home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / emulator / bsvc-1.000 / bsvc-1 / bsvc-1.0.4 / src / Framework / Time.hxx < prev    next >
Text File  |  1995-07-26  |  837b  |  35 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. // $Id: Time.hxx,v 1.1 1994/02/18 19:54:03 bmott Exp $
  3. ///////////////////////////////////////////////////////////////////////////////
  4. // Time.hxx
  5. //
  6. //   The Time object provides access to the system's time. 
  7. //
  8. //
  9. // BSVC "A Microprocessor Simulation Framework"
  10. // Copyright (c) 1993
  11. // By: Bradford W. Mott
  12. // August 12,1993
  13. //
  14. ///////////////////////////////////////////////////////////////////////////////
  15. // $Log: Time.hxx,v $
  16. // Revision 1.1  1994/02/18  19:54:03  bmott
  17. // Initial revision
  18. //
  19. ///////////////////////////////////////////////////////////////////////////////
  20.  
  21. #ifndef TIME_HXX
  22. #define TIME_HXX
  23.  
  24. class Time {
  25.   private:
  26.     
  27.   public:
  28.     inline Time()
  29.     {};
  30.  
  31.     long seconds();         // Returns the current System Time
  32. };
  33.  
  34. #endif
  35.